Assignment operator. Has the same constraints as the constructor.
1 Checked!long a; 2 a = 42L; 3 assert(a == 42); 4 a = 4242; 5 assert(a == 4242);
See Implementation
Assignment operator. Has the same constraints as the constructor.